f1dbbdd9f2df20e28ce20de7a5708f97c602ac51,debugger/impl/com/intellij/debugger/ui/breakpoints/BreakpointWithHighlighter.java,BreakpointWithHighlighter,getLineIndex,#,523

Before Change


  }

  public int getLineIndex() {
    return getSourcePosition().getLine();
  }

  protected static RangeHighlighter createHighlighter(Project project,

After Change


  }

  public int getLineIndex() {
    final SourcePosition sourcePosition = getSourcePosition();
    return (sourcePosition != null) ? sourcePosition.getLine() : -1;
  }

  protected static RangeHighlighter createHighlighter(Project project,